import java.io.*;       
/* java.ioе() ΪҪõread()* ʾðе */
 public  class ReadChar {
         public static void main(String args[]) {
		try {     //쳣еtry 
			char ch=(char)System.in.read();   	// readһַch 
                        System.out.print(ch);      
		} catch (IOException e) { }              	// catch 䣬IOExceptionΪ쳣
								//ҲʹException쳣
         }
}
